There are two ways of inserting text into documents. Text can be inserted as is or converted to HTML.
For example, say you are inserting the following text into a document:
"That is not dead which can eternal lie,
And with strange aeons, even death may die."
-H.P. Lovecraft.
If this text was inserted with no changes, it would appear as above in your webpage with <PRE> tags wrapped around it. However, you would be unable to change the font because the browsers treat all text inside <PRE> tags as plain text.
If you converted the above text to HTML, it would be inserted as:
<P>
"That is not dead which can eternal lie, <BR>
And with strange aeons, even death may die."
</P>
<P>
-H.P. Lovecraft.
</P>
Now that the text is HTML, you can edit the text as you see fit.
On the File menu click on “Import Text Document”
Use the File Picker to find the file you want to import.
Click Open.
Select “Insert with <PRE> tags”.
Choose where you want to insert the text:
Into a New Document.
Into the current Document.
Click “Convert”.
Choose where you want to insert the text:
Into a New Document.
Into the current Document.
Select “Convert to HTML”.
Choose which conversion option you want (Usually both).
Click “Convert”.